home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-04-03 | 921 b | 36 lines | [TEXT/MPS ] |
- ; File: E16.Loader
- ;
- ;
- ; Copyright Apple Computer, Inc. 1986-90
- ; All Rights Reserved
- ;
- ;
- idNotFound EQU $1101 ; segment/application/entry not found
- idPathnameErr EQU $1103
- idNotLoadFile EQU $1104 ; file is not a load file
- idBusyErr EQU $1105 ; system loader is busy
- idFilVersErr EQU $1107 ; file version error
- idUserIDErr EQU $1108 ; user ID error
- idSequenceErr EQU $1109 ; segnum out of sequence
- idBadRecordErr EQU $110A ; illegal load record found
- idForeignSegErr EQU $110B ; segment is foreign
- ; offset constants for InitialLoadOutputRec
- ouserID EQU 0
- ostartAddr EQU 2
- odPageAddr EQU 6
- obuffSize EQU 8
- ; offset constants for RestartOutRec
- orouserID EQU 0
- orostartAddr EQU 2
- orodPageAddr EQU 6
- orobuffSize EQU 8
- ; offset constants for LoadSegNameOut
- olssegAddr EQU 0
- olsuserID EQU 4
- olsfileNum EQU 6
- olssegNum EQU 8 ;
- ; offset constants for UnloadSegOutRec
- oususerID EQU 0
- ousfileNum EQU 2
- oussegNum EQU 4
-